Skip to main content

SBOM Attestation

Introduction

The SBOM Attestation Schema extends the generic Attestation Schema to enable attestations related to SBOMs (Software Bill of Materials). By referencing the existing SBOM schema, this schema ensures consistency in how SBOM details are represented across the TAIBOM framework.

Description

This schema includes:

  • Type: The attestation type, set to "SBOM".
  • SBOM: References the detailed SBOM schema to provide comprehensive metadata about the component’s software dependencies.

Use Case

The SBOM Attestation Schema is used to:

  1. Document SBOM Information: Attach detailed SBOM data to attestations for components.
  2. Enable Traceability: Link SBOMs to attestations for enhanced transparency in software supply chains.
  3. Support Compliance: Ensure compliance with SBOM standards and regulations.

By leveraging the existing SBOM schema, this attestation schema promotes reusability and standardisation.

Schemas

$id: https://github.com/nqminds/Trusted-AI-BOM/blob/main/packages/schemas/src/taibom-schemas/62-sbom-attestation.v1.0.0.schema.yaml
$schema: https://json-schema.org/draft/2020-12/schema
title: SBOM Attestation
description: |
This schema extends the generic Attestation Schema to define an attestation for SBOM (Software Bill of Materials).
type: object
properties:
component:
type: object
description: Component reference, including an ID and hash for the VC claim.
properties:
id:
type: string
description: The component ID (unique identifier) of the VC claim.
hash:
type: string
description: Cryptographic hash (e.g., SHA-256) for verifying the integrity of the VC claim.
required:
- id
- hash
attestation:
type: object
properties:
type:
type: string
enum:
- SBOM
description: Type of attestation, set to "SBOM" for this schema.
required:
- type
required:
- component
- attestation

Examples

componentattestation
[object Object][object Object]
Edit this schema here